home *** CD-ROM | disk | FTP | other *** search
/ Private Casting / Casting One.mdf / Docs / Models.dir / 00026.ls < prev    next >
Encoding:
Text File  |  1998-02-21  |  350 b   |  24 lines

  1. on mouseEnter
  2.   cursor([cast "curs", cast "mask"])
  3. end
  4.  
  5. on mouseLeave
  6.   cursor(-1)
  7. end
  8.  
  9. on mouseUp
  10.   global idioma
  11.   cursor(-1)
  12.   if idioma = "ingles" then
  13.     go(1, "helpen.dir")
  14.   else
  15.     if idioma = "frances" then
  16.       go(1, "helpfr.dir")
  17.     else
  18.       if idioma = "aleman" then
  19.         go(1, "helpde.dir")
  20.       end if
  21.     end if
  22.   end if
  23. end
  24.